home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr11 / pctv4n2.zip / SHADES.ZIP / FRAME.H < prev    next >
C/C++ Source or Header  |  1993-02-26  |  410b  |  17 lines

  1. // frame.h -- TFrameWindow declaration by Tom Swan
  2. #ifndef __FRAME_H
  3. #define __FRAME_H   // Prevent multiple #includes
  4.  
  5. #include "multi.rch"
  6.  
  7. class TFrameWindow: public TMDIFrame {
  8. public:
  9.   TFrameWindow(LPSTR ATitle, int MenuId);
  10.   virtual void CMFileNew(RTMessage)
  11.     = [CM_FIRST + CM_FILE_NEW];
  12.   virtual void CMFileExit(RTMessage)
  13.     = [CM_FIRST + CM_FILE_EXIT];
  14. };
  15.  
  16. #endif  // __FRAME_H
  17.